home *** CD-ROM | disk | FTP | other *** search
- /*
- net logger - network traffic logging library
- Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
-
- Please see the file `COPYING' for the complete copyright notice.
-
- defs.h - 03/20/93
-
- */
-
- struct str_table {
- unsigned int value;
- char *text;
- };
-
- struct val_str_hndl {
- unsigned int value;
- char *text;
- void (*handler)();
- };
-
- extern int opennit(char *, void (*)(int));
- extern void procpkts(int, void (*)());
-